Add the .linked style class to combo boxes which have
an entry, since that is what they are.
gtk_widget_show (entry);
gtk_container_add (GTK_CONTAINER (combo_box), entry);
+ context = gtk_widget_get_style_context (GTK_WIDGET (combo_box));
+ gtk_style_context_add_class (context, "linked");
+
context = gtk_widget_get_style_context (GTK_WIDGET (entry));
gtk_style_context_add_class (context, "combo");
* # CSS nodes
*
* |[<!-- language="plain" -->
- * combobox
+ * combobox.linked
* ├── entry.combo
* ├── button.combo
* ╰── window.popup
*
* GtkComboBoxText has a single CSS node with name combobox. It adds
* the style class .combo to the main CSS nodes of its entry and button
- * children.
+ * children, and the .linked class to the main node.
*/
static void gtk_combo_box_text_buildable_interface_init (GtkBuildableIface *iface);